home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
UNIXTOOL
/
GNU
/
PERL
/
PERL5SRC.ZIP
/
!Perl
/
c
/
miniplmain
< prev
next >
Wrap
Text File
|
1995-06-28
|
853b
|
47 lines
/*
* "The Road goes ever on and on, down from the door where it began."
*/
#include "INTERN.h"
#include "perl.h"
static void xs_init _((void));
static PerlInterpreter *my_perl;
int
main(int argc, char **argv)
{
char *env[] = {"There","Is","No","Env","Array","ATM","Remind","Me","To","Fix","It",0};
int exitstatus;
#ifdef VMS
getredirection(&argc,&argv);
#endif
if (!do_undump) {
my_perl = perl_alloc();
if (!my_perl)
exit(1);
perl_construct( my_perl );
}
exitstatus = perl_parse( my_perl, xs_init, argc, argv, env );
if (exitstatus)
exit( exitstatus );
exitstatus = perl_run( my_perl );
perl_destruct( my_perl );
perl_free( my_perl );
exit( exitstatus );
}
/* Register any extra external extensions */
static void
xs_init()
{
/* Do not delete this line--writemain depends on it */
}